const github.com/andybalholm/brotli.maxNumberOfBlockTypes

13 uses

	github.com/andybalholm/brotli (current package)
		block_splitter_command.go#L302: 	num_final_clusters = histogramCombineCommand(all_histograms, cluster_size, histogram_symbols, clusters, pairs, num_clusters, num_blocks, maxNumberOfBlockTypes, max_num_pairs)
		block_splitter_distance.go#L302: 	num_final_clusters = histogramCombineDistance(all_histograms, cluster_size, histogram_symbols, clusters, pairs, num_clusters, num_blocks, maxNumberOfBlockTypes, max_num_pairs)
		block_splitter_literal.go#L302: 	num_final_clusters = histogramCombineLiteral(all_histograms, cluster_size, histogram_symbols, clusters, pairs, num_clusters, num_blocks, maxNumberOfBlockTypes, max_num_pairs)
		constants.go#L13: const maxNumberOfBlockTypes = 256
		constants.go#L22: const maxContextMapSymbols = (maxNumberOfBlockTypes + contextMapMaxRle)
		constants.go#L24: const maxBlockTypeSymbols = (maxNumberOfBlockTypes + 2)
		metablock.go#L298: 	self.max_block_types_ = maxNumberOfBlockTypes / num_contexts
		metablock_command.go#L29: 	var max_num_types uint = brotli_min_size_t(max_num_blocks, maxNumberOfBlockTypes+1)
		metablock_command.go#L98: 		if split.num_types < maxNumberOfBlockTypes && diff[0] > self.split_threshold_ && diff[1] > self.split_threshold_ {
		metablock_distance.go#L29: 	var max_num_types uint = brotli_min_size_t(max_num_blocks, maxNumberOfBlockTypes+1)
		metablock_distance.go#L98: 		if split.num_types < maxNumberOfBlockTypes && diff[0] > self.split_threshold_ && diff[1] > self.split_threshold_ {
		metablock_literal.go#L29: 	var max_num_types uint = brotli_min_size_t(max_num_blocks, maxNumberOfBlockTypes+1)
		metablock_literal.go#L98: 		if split.num_types < maxNumberOfBlockTypes && diff[0] > self.split_threshold_ && diff[1] > self.split_threshold_ {